home *** CD-ROM | disk | FTP | other *** search
/ Keystone Learning XML: Entities & Basic Scripting / Keystone Learning XML Entities and Basic Scripting.iso / Sample Files / Chapter 6 / Employees2.xml < prev    next >
Encoding:
Extensible Markup Language  |  1999-12-03  |  952 b   |  39 lines

  1. <?xml version="1.0" standalone="yes"?>
  2. <!DOCTYPE employees SYSTEM "Employees.dtd" [
  3.     <!ELEMENT name (#PCDATA)>
  4. ]>
  5.  
  6. <employees>
  7.  
  8.     <employee id="A1234">
  9.         <name>John Doe</name>
  10.         <position>Programmer</position>
  11.         <address>
  12.             <street>123 Main Street</street>
  13.             <city>Anywhere</city>
  14.             <state>CA</state>
  15.             <zip>92000</zip>
  16.         </address>
  17.         <phone>
  18.             <main>(714) 555-1000</main>
  19.             <fax>(714) 555-1001</fax>
  20.         </phone>
  21.     </employee>
  22.  
  23.     <employee id="A2345">
  24.         <name>
  25.             <first>Jane</first>
  26.             <last>Doe</last>
  27.         </name>
  28.         <position>Systems Analyst</position>
  29.         <address>
  30.         </address>
  31.         <phone>
  32.             <main>(714) 555-2000</main>
  33.             <mobile>(949) 555-2200</mobile>
  34.             <home>(949) 555-2220</home>
  35.         </phone>
  36.     </employee>
  37.  
  38. </employees>
  39.